garbage collection algorithm造句
例句与造句
- Train incremental garbage collection algorithm
火车增量垃圾收集算法 - Because the garbage collection algorithm is nondeterministic , the
由于垃圾回收算法是非确定性的,因此可能会立即调用 - When evaluating a garbage collection algorithm , we might consider any or all of the following criteria
在对垃圾收集算法进行评价时,我们可能要考虑以下所有标准: - John wiley sons , 1997 is a comprehensive survey of garbage collection algorithms , with an extensive bibliography
John wiley sons , 1997年是对垃圾收集算法的全面评述,包括大量参考书目。 - The garbage collection algorithm is nondeterministic , so you cannot determine when the clr will release an object s resources
垃圾回收算法是非确定性的,因此无法确定clr释放对象资源的时间。 - It's difficult to find garbage collection algorithm in a sentence. 用garbage collection algorithm造句挺难的
- Because garbage collection algorithms vary , some algorithms analyze older , longer - lived objects less frequently than short - lived objects
由于各种垃圾收集算法有所不同,某些算法会更频繁地分析生存期较短的对象,而不是较老、生存期较长的对象。 - Many garbage collection algorithms require dividing the heap into separate memory spaces , some of which may be inaccessible to the user program at certain times
许多垃圾收集算法需要将堆分割成独立的内存空间,其中一些空间在某些时刻对用户程序是不可访问的。 - The problem faced by all garbage collection algorithms is the same - identify blocks of memory that have been dispensed by the allocator , but are unreachable by the user program
所有垃圾收集算法所面临的问题是相同的找出由分配器分配的,但是用户程序不可到达的内存块。 - Some garbage collection algorithms require significant cooperation from the compiler or runtime environment , such as updating reference counts whenever a pointer assignment is performed
一些垃圾收集算法要求编译器或者运行时环境的重要配合,如当进行指针分配时更新引用计数。 - The runtime s garbage collection algorithm is based on several generalizations that the computer software industry has discovered to be true by experimenting with garbage collection schemes
运行时的垃圾回收算法基于以下几个普遍原理,这些垃圾回收方案的原理已在计算机软件业通过实验得到了证实。 - In addition to the copying and mark - compact collectors used by default , the 1 . 4 . 1 jdk also contains four other garbage collection algorithms , each of which is suited to a different purpose
除了默认情况下使用的复制收集器和标记-整理收集器, jdk 1 . 4 . 1还包含其他四种垃圾收集算法,每一种适用于不同的目的。 - Usually , the tuning requirements we see that are related to memory involve reducing garbage collection overhead , ideally by tuning the heap sizes and garbage collection algorithms , and where that fails , reducing object churn using various techniques
通常,我们看到的和内存有关的调优要求都涉及到降低垃圾收集的开销,理想情况下可以通过调整堆的大小或者改变垃圾收集算法来解决,如果不行的话,还可以采用各种技术减少内存中的对象。 - Because most garbage collection algorithms stop the world for some period of time , a single - threaded garbage collector can quickly become a scalability bottleneck , because all but one processor are idle while the garbage collector has suspended the user program threads
因为大多数垃圾收集算法会在一段时间里使系统停止,单线程的收集器很快会成为伸缩性瓶颈,因为在垃圾收集器将用户程序线程挂起时,除了一个处理器之外,其他的处理器都是空闲的。